123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- "use client";
- import { UserInfoRep, UserVipInfo, Wallet } from "@/api/user";
- import TipsModal, { ModalProps } from "@/components/TipsModal";
- import { Link, useRouter } from "@/i18n/routing";
- import { WalletEnum } from "@/types";
- import { vipImages } from "@/utils/constant";
- import { flatPoint, percentage } from "@/utils/methods";
- import { ProgressBar, Toast } from "antd-mobile";
- import { useTranslations } from "next-intl";
- import Image from "next/image";
- import { Fragment, useRef, useState } from "react";
- type Props = {
- userInfo: UserInfoRep;
- userMoney: Wallet;
- userVip: UserVipInfo;
- };
- const VipCard = (props: { userVip: UserVipInfo }) => {
- const { userVip } = props;
- const t = useTranslations("ProfilePage");
- // Vip 图标
- const vipIconElement = vipImages.map((item, index) => {
- if (item.leve === userVip.vip_level) {
- return (
- <Fragment key={index}>
- <Image src={item.src} alt={"vip"} height={110} width={100} />
- <span className={"icon-level"} style={{ color: item.color }}>
- {item.leve}
- </span>
- </Fragment>
- );
- }
- });
- return (
- <div className={"vip-card"}>
- <div className={"vip-card__icon"}>{vipIconElement}</div>
- <div className={"vip-card-process"}>
- {/*<div className={"process-top"}>{userVip.vip_exp}xp</div>*/}
- <div>
- <ProgressBar
- percent={percentage(userVip.vip_exp, userVip.vip_score_exp)}
- style={{
- "--fill-color": "#fb8b05",
- "--track-width": "0.0694rem",
- }}
- />
- </div>
- <div className={"process-bottom"}>
- <span>VIP{userVip.vip_level}</span>
- <span className={"process-bottom-desc"}>
- {t("expTips", {
- exp: flatPoint(userVip.vip_score_exp - userVip.vip_exp),
- })}
- </span>
- <span>
- VIP
- {userVip.vip_next_level}
- </span>
- </div>
- </div>
- </div>
- );
- };
- const Progress = (props: { percent: number }) => {
- const { percent } = props;
- return (
- <ProgressBar
- percent={percent}
- className={"mr-[0.0694rem] flex-1"}
- style={{
- "--fill-color": "var(--primary-color)",
- "--track-width": "0.0694rem",
- }}
- />
- );
- };
- // 现金
- const Balance = (props: { wallet: Wallet }) => {
- const { wallet } = props;
- const num = 1;
- const t = useTranslations("ProfilePage");
- return (
- <div>
- <div>
- <span>{t("Saldo")}</span>
- <span></span>
- <span>{wallet.score}</span>
- </div>
- <Progress percent={num} />
- </div>
- );
- };
- const WalletCard = (props: { userMoney: Wallet }) => {
- const { userMoney } = props;
- const t = useTranslations("ProfilePage");
- const [visible, setVisible] = useState(false);
- const router = useRouter();
- const callbackFun = () => {
- setVisible(!visible);
- };
- const walletHandler = (key: string) => {
- router.push(`/${key}`);
- };
- const tipsRef = useRef<ModalProps>(null);
- const [tipsStatus, setTipsStatus] = useState<keyof typeof WalletEnum>("Balance");
- return (
- <>
- <TipsModal
- ref={tipsRef}
- title={
- <div className={"flex items-center"}>
- <i
- className={"iconfont icon-liwuhuodong mr-[0.0694rem] text-[0.2778rem]"}
- ></i>
- {t("modalTitle")}
- </div>
- }
- >
- {/*现金*/}
- {tipsStatus === WalletEnum.Balance ? <Balance wallet={userMoney} /> : null}
- {/* 彩金*/}
- {/*<div>彩金</div>*/}
- {/* 免费币 */}
- {/*<div>免费币</div>*/}
- {/* 重玩币 */}
- {/*<div>重玩币</div>*/}
- </TipsModal>
- <div className="coin">
- <span className="coin_left__icon iconfont icon-icon-wallet"></span>
- <div className={"coin_right_wallet"}>
- <div className={"wallet_left_border"}>
- <span>{t("Saldo")}</span>
- <div className="num">
- <span className="uppercase">brl </span>
- <span>{userMoney.score || 0.0}</span>
- </div>
- </div>
- <div className={"wallet_right_content"}>
- <div className={"wallet_header"}>
- {t("bonus")}
- <Image
- className="wallet_header__icon"
- src="/img/a.png"
- alt="question"
- onClick={() => tipsRef.current?.onOpen()}
- width={15}
- height={15}
- />
- </div>
- <div className="num">
- <span className="uppercase">brl </span>
- <span>{userMoney.point || 0.0}</span>
- </div>
- </div>
- <div className={"wallet_left_border"} onClick={() => walletHandler("free")}>
- <div className={"wallet_header"}>
- {t("free")}
- <Image
- className="wallet_header__icon"
- src="/img/a.png"
- alt="question"
- width={15}
- height={15}
- onClick={(event) => {
- event.stopPropagation();
- setVisible(true);
- }}
- />
- </div>
- <div className="num">
- <span className="uppercase">brl </span>
- <span>{userMoney.free_score || 0.0}</span>
- </div>
- </div>
- <div className={"wallet_right_content"} onClick={() => walletHandler("replay")}>
- <div className={"wallet_header"}>
- {t("replay")}
- <Image
- className="wallet_header__icon"
- src="/img/a.png"
- alt="question"
- onClick={(event) => {
- event.stopPropagation();
- setVisible(true);
- }}
- width={15}
- height={15}
- />
- </div>
- <div className="num">
- <span className="uppercase">brl </span>
- <span>{userMoney.lose_score || 0.0}</span>
- </div>
- </div>
- </div>
- </div>
- </>
- );
- };
- export const ProfileHeader = (props: Props) => {
- const { userInfo, userMoney, userVip } = props;
- const t = useTranslations("ProfilePage");
- const router = useRouter();
- const handler = () => {
- if (!!userMoney.score) {
- router.push("/withdraw");
- } else {
- Toast.show("no monry");
- }
- };
- return (
- <>
- <div className={"userContent"}>
- <div className={"userInfo"}>
- <div>
- <div className={"bgImg"}></div>
- <div>
- <span>{t("Conta")}</span>
- <span className="phone">{userInfo?.user_phone || ""}</span>
- </div>
- </div>
- <Link
- className="goto iconfont icon-xiangzuo1"
- href={`/confirmPassword?userPhone=${userInfo.user_phone}&code=123456&alter=true`}
- ></Link>
- </div>
- {/*vipcard*/}
- <VipCard userVip={userVip} />
- <WalletCard userMoney={userMoney} />
- </div>
- <div className="link">
- <Link href={"/deposit"} className={"btn"}>
- {t("Depósito")}
- </Link>
- <p className={"btn"} onClick={handler}>
- {t("Sacar")}
- </p>
- </div>
- </>
- );
- };
|